home *** CD-ROM | disk | FTP | other *** search
/ Programming Windows 95 / Programming Windows 95.iso / code / CHAP19 / STRPROG.C < prev    next >
C/C++ Source or Header  |  1995-12-31  |  6KB  |  200 lines

  1. /*--------------------------------------------------------
  2.    STRPROG.C -- Program using STRLIB dynamic link library
  3.                 (c) Charles Petzold, 1996
  4.   --------------------------------------------------------*/
  5.  
  6. #include <windows.h>
  7. #include <string.h>
  8. #include "strprog.h"
  9. #include "strlib.h"
  10.  
  11. #define MAXLEN 32
  12. #define WM_DATACHANGE WM_USER
  13.  
  14. typedef struct
  15.      {
  16.      HDC  hdc ;
  17.      int  xText ;
  18.      int  yText ;
  19.      int  xStart ;
  20.      int  yStart ;
  21.      int  xIncr ;
  22.      int  yIncr ;
  23.      int  xMax ;
  24.      int  yMax ;
  25.      }
  26.      CBPARAM ;
  27.  
  28. LRESULT CALLBACK WndProc (HWND, UINT, WPARAM, LPARAM) ;
  29.  
  30. char szAppName[] = "StrProg" ;
  31. char szString[MAXLEN] ;
  32.  
  33. int WINAPI WinMain (HINSTANCE hInstance, HINSTANCE hPrevInstance,
  34.                     PSTR szCmdLine, int iCmdShow)
  35.      {
  36.      HWND        hwnd ;
  37.      MSG         msg ;
  38.      WNDCLASSEX  wndclass ;
  39.  
  40.      wndclass.cbSize        = sizeof (wndclass) ;
  41.      wndclass.style         = CS_HREDRAW | CS_VREDRAW ;
  42.      wndclass.lpfnWndProc   = WndProc ;
  43.      wndclass.cbClsExtra    = 0 ;
  44.      wndclass.cbWndExtra    = 0 ;
  45.      wndclass.hInstance     = hInstance ;
  46.      wndclass.hIcon         = LoadIcon (NULL, IDI_APPLICATION) ;
  47.      wndclass.hCursor       = LoadCursor (NULL, IDC_ARROW) ;
  48.      wndclass.hbrBackground = (HBRUSH) GetStockObject (WHITE_BRUSH) ;
  49.      wndclass.lpszMenuName  = szAppName ;
  50.      wndclass.lpszClassName = szAppName ;
  51.      wndclass.hIconSm       = LoadIcon (NULL, IDI_APPLICATION) ;
  52.  
  53.      RegisterClassEx (&wndclass) ;
  54.  
  55.      hwnd = CreateWindow (szAppName, "DLL Demonstration Program",
  56.                           WS_OVERLAPPEDWINDOW,
  57.                           CW_USEDEFAULT, CW_USEDEFAULT,
  58.                           CW_USEDEFAULT, CW_USEDEFAULT,
  59.                           NULL, NULL, hInstance, NULL) ;
  60.  
  61.      ShowWindow (hwnd, iCmdShow) ;
  62.      UpdateWindow (hwnd) ;
  63.  
  64.      while (GetMessage (&msg, NULL, 0, 0))
  65.           {
  66.           TranslateMessage (&msg) ;
  67.           DispatchMessage (&msg) ;
  68.           }
  69.      return msg.wParam ;
  70.      }
  71.  
  72. BOOL CALLBACK DlgProc (HWND hDlg, UINT iMsg, WPARAM wParam, LPARAM lParam)
  73.      {
  74.      switch (iMsg)
  75.           {
  76.           case WM_INITDIALOG :
  77.                SendDlgItemMessage (hDlg, IDD_STRING, EM_LIMITTEXT,
  78.                                    MAXLEN - 1, 0) ;
  79.                return TRUE ;
  80.  
  81.           case WM_COMMAND :
  82.                switch (wParam)
  83.                     {
  84.                     case IDOK :
  85.                          GetDlgItemText (hDlg, IDD_STRING, szString, MAXLEN) ;
  86.                          EndDialog (hDlg, TRUE) ;
  87.                          return TRUE ;
  88.  
  89.                     case IDCANCEL :
  90.                          EndDialog (hDlg, FALSE) ;
  91.                          return TRUE ;
  92.                     }
  93.           }
  94.      return FALSE ;
  95.      }
  96.  
  97. BOOL CALLBACK EnumCallBack (HWND hwnd, LPARAM lParam)
  98.      {
  99.      char szClassName[16] ;
  100.  
  101.      GetClassName (hwnd, szClassName, sizeof (szClassName)) ;
  102.  
  103.      if (0 == strcmp (szClassName, szAppName))
  104.           SendMessage (hwnd, WM_DATACHANGE, 0, 0) ;
  105.  
  106.      return TRUE ;
  107.      }
  108.  
  109. BOOL CALLBACK GetStrCallBack (PSTR pString, CBPARAM *pcbp)
  110.      {
  111.      TextOut (pcbp->hdc, pcbp->xText, pcbp->yText,
  112.               pString, strlen (pString)) ;
  113.  
  114.      if ((pcbp->yText += pcbp->yIncr) > pcbp->yMax)
  115.           {
  116.           pcbp->yText = pcbp->yStart ;
  117.           if ((pcbp->xText += pcbp->xIncr) > pcbp->xMax)
  118.                return FALSE ;
  119.           }
  120.      return TRUE ;
  121.      }
  122.  
  123. LRESULT CALLBACK WndProc (HWND hwnd, UINT iMsg, WPARAM wParam, LPARAM lParam)
  124.      {
  125.      static HINSTANCE  hInst ;
  126.      static int        cxChar, cyChar, cxClient, cyClient ;
  127.      CBPARAM           cbparam ;
  128.      HDC               hdc ;
  129.      PAINTSTRUCT       ps ;
  130.      TEXTMETRIC        tm ;
  131.  
  132.      switch (iMsg)
  133.           {
  134.           case WM_CREATE :
  135.                hInst = ((LPCREATESTRUCT) lParam)->hInstance ;
  136.                hdc   = GetDC (hwnd) ;
  137.                GetTextMetrics (hdc, &tm) ;
  138.                cxChar = (int) tm.tmAveCharWidth ;
  139.                cyChar = (int) (tm.tmHeight + tm.tmExternalLeading) ;
  140.                ReleaseDC (hwnd, hdc) ;
  141.  
  142.                return 0 ;
  143.  
  144.           case WM_COMMAND :
  145.                switch (wParam)
  146.                     {
  147.                     case IDM_ENTER :
  148.                          if (DialogBox (hInst, "EnterDlg", hwnd, &DlgProc))
  149.                               {
  150.                               if (AddString (szString))
  151.                                    EnumWindows (&EnumCallBack, 0) ;
  152.                               else
  153.                                    MessageBeep (0) ;
  154.                               }
  155.                          break ;
  156.  
  157.                     case IDM_DELETE :
  158.                          if (DialogBox (hInst, "DeleteDlg", hwnd, &DlgProc))
  159.                               {
  160.                               if (DeleteString (szString))
  161.                                    EnumWindows (&EnumCallBack, 0) ;
  162.                               else
  163.                                    MessageBeep (0) ;
  164.                               }
  165.                          break ;
  166.                     }
  167.                return 0 ;
  168.  
  169.           case WM_SIZE :
  170.                cxClient = (int) LOWORD (lParam) ;
  171.                cyClient = (int) HIWORD (lParam) ;
  172.                return 0 ;
  173.  
  174.           case WM_DATACHANGE :
  175.                InvalidateRect (hwnd, NULL, TRUE) ;
  176.                return 0 ;
  177.  
  178.           case WM_PAINT :
  179.                hdc = BeginPaint (hwnd, &ps) ;
  180.  
  181.                cbparam.hdc   = hdc ;
  182.                cbparam.xText = cbparam.xStart = cxChar ;
  183.                cbparam.yText = cbparam.yStart = cyChar ;
  184.                cbparam.xIncr = cxChar * MAXLEN ;
  185.                cbparam.yIncr = cyChar ;
  186.                cbparam.xMax  = cbparam.xIncr * (1 + cxClient / cbparam.xIncr) ;
  187.                cbparam.yMax  = cyChar * (cyClient / cyChar - 1) ;
  188.  
  189.                GetStrings ((PSTRCB) GetStrCallBack, (PVOID) &cbparam) ;
  190.  
  191.                EndPaint (hwnd, &ps) ;
  192.                return 0 ;
  193.  
  194.           case WM_DESTROY :
  195.                PostQuitMessage (0) ;
  196.                return 0 ;
  197.           }
  198.      return DefWindowProc (hwnd, iMsg, wParam, lParam) ;
  199.      }
  200.